home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / libs / mlib / include / maplane.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-26  |  487 b   |  21 lines

  1. //  Animation plane header file.
  2. //  Creates an additional graphic page for mode 0x13
  3. //  Requires   GRAPHICS mode.
  4.  
  5. #ifndef __MAPLANE_H
  6. #define __MAPLANE_H
  7.  
  8. #define MAPLANE_ID           0x0102
  9.  
  10. class MAplane : public cArray {
  11. public:
  12.                  MAplane (void);
  13.     virtual inline void      Get (void);
  14.     virtual inline classType isA (void) {return (MAPLANE_ID);};
  15.     virtual inline void      Put (void);
  16.                 ~MAplane (void) {};
  17. };
  18. typedef MAplane APLANE;
  19.  
  20. #endif
  21.